home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / source / snip9503 / sstrcpy.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-14  |  220 b   |  14 lines

  1. #include <string.h>
  2.  
  3. char *sstrcpy(char *to, char *from)
  4. {
  5.     memmove(to, from, 1+strlen(from));
  6.     return to;
  7. }
  8.  
  9. char *sstrcat(char *to, char *from)
  10. {
  11.     sstrcpy(to + strlen(to), from);
  12.     return to;
  13. }
  14.